home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY3 / POV301 / povray3 / povscn / level1 / pov / box < prev    next >
Text File  |  1995-11-08  |  597b  |  33 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // File by Alexander Enzmann
  3.  
  4. #version 3.0
  5. global_settings { assumed_gamma 2.2 }
  6.  
  7. camera {
  8.    location  <0, 0, -8>
  9.    direction <0, 0, 1.2071>
  10.    look_at   <0, 0, 0>
  11. }
  12.  
  13. sphere { <0.0, 0.0, 0.0>, 2
  14.    finish {
  15.       ambient 0.2
  16.       diffuse 0.8
  17.       phong 1
  18.    }
  19.    pigment { color red 1 green 0 blue 0 }
  20. }
  21.  
  22. box { <-2.0, -0.2, -2.0>, <2.0, 0.2, 2.0>
  23.     finish {
  24.        ambient 0.2
  25.        diffuse 0.8
  26.     }
  27.     pigment { color red 1 green 0 blue 1 }
  28.  
  29.     rotate <-20, 30, 0>
  30. }
  31.  
  32. light_source { <-10, 3, -20> color red 1 green 1 blue 1 }
  33.